Move documentation to inline comments: GtkCellRendererPixbuf
authorJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 21:47:18 +0000 (22:47 +0100)
committerJavier Jardón <jjardon@gnome.org>
Mon, 11 Apr 2011 22:07:41 +0000 (23:07 +0100)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkcellrendererpixbuf.sgml [deleted file]
gtk/gtkcellrendererpixbuf.c

index 7bfa2cc3732aa463af31e4d11649ef17c386def5..acc4adac8ad8efae92ac57882a1be6a5cb9c2582 100644 (file)
@@ -13,6 +13,7 @@ gtkcelllayout.sgml
 gtkcellrenderer.sgml
 gtkcellrendereraccel.sgml
 gtkcellrenderercombo.sgml
+gtkcellrendererpixbuf.sgml
 gtkcellrendererprogress.sgml
 gtkcellrendererspin.sgml
 gtkcellrenderertext.sgml
diff --git a/docs/reference/gtk/tmpl/gtkcellrendererpixbuf.sgml b/docs/reference/gtk/tmpl/gtkcellrendererpixbuf.sgml
deleted file mode 100644 (file)
index cad7a44..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkCellRendererPixbuf
-
-<!-- ##### SECTION Short_Description ##### -->
-Renders a pixbuf in a cell
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-A #GtkCellRendererPixbuf can be used to render an image in a cell. It allows to render 
-either a given #GdkPixbuf (set via the 
-<link linkend="GtkCellRendererPixbuf--pixbuf">pixbuf</link> property) or a stock icon 
-(set via the <link linkend="GtkCellRendererPixbuf--stock-id">stock-id</link> property).
-</para>
-
-<para>
-To support the tree view, #GtkCellRendererPixbuf also supports rendering two alternative 
-pixbufs, when the <link linkend="GtkCellRenderer--is-expander">is-expander</link> property 
-is %TRUE. If the <link linkend="GtkCellRenderer--is-expanded">is-expanded</link> property 
-is %TRUE and the 
-<link linkend="GtkCellRendererPixbuf--pixbuf-expander-open">pixbuf-expander-open</link> 
-property is set to a pixbuf, it renders that pixbuf, if the 
-<link linkend="GtkCellRenderer--is-expanded">is-expanded</link> property is %FALSE and
-the 
-<link linkend="GtkCellRendererPixbuf--pixbuf-expander-closed">pixbuf-expander-closed</link> 
-property is set to a pixbuf, it renders that one. 
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkCellRendererPixbuf ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### ARG GtkCellRendererPixbuf:follow-state ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:gicon ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:icon-name ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:pixbuf ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:pixbuf-expander-closed ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:pixbuf-expander-open ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:stock-detail ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:stock-id ##### -->
-<para>
-
-</para>
-
-<!-- ##### ARG GtkCellRendererPixbuf:stock-size ##### -->
-<para>
-
-</para>
-
-<!-- ##### FUNCTION gtk_cell_renderer_pixbuf_new ##### -->
-<para>
-
-</para>
-
-@void: 
-@Returns: 
-
-
index 95d031561a33f235ab72cc32826b48c4402e67c7..f50b3aeee9d6322191f368ccc6a28332f19f1c58 100644 (file)
 #include "gtkprivate.h"
 
 
+/**
+ * SECTION:gtkcellrendererpixbuf
+ * @Short_description: Renders a pixbuf in a cell
+ * @Title: GtkCellRendererPixbuf
+ *
+ * A #GtkCellRendererPixbuf can be used to render an image in a cell. It allows
+ * to render either a given #GdkPixbuf (set via the
+ * #GtkCellRendererPixbuf:pixbuf property) or a stock icon (set via the
+ * #GtkCellRendererPixbuf:stock-id property).
+ *
+ * To support the tree view, #GtkCellRendererPixbuf also supports rendering two
+ * alternative pixbufs, when the #GtkCellRenderer:is-expander property is %TRUE.
+ * If the #GtkCellRenderer:is-expanded property is %TRUE and the
+ * #GtkCellRendererPixbuf:pixbuf-expander-open property is set to a pixbuf, it
+ * renders that pixbuf, if the #GtkCellRenderer:is-expanded property is %FALSE
+ * and the #GtkCellRendererPixbuf:pixbuf-expander-closed property is set to a
+ * pixbuf, it renders that one.
+ */
+
+
 static void gtk_cell_renderer_pixbuf_get_property  (GObject                    *object,
                                                    guint                       param_id,
                                                    GValue                     *value,